home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / blitzbasic / blitz-list200994.lha / blitz-list / 000452_blitz-list-request_Mon Jul 4 05:57:47 1994.msg < prev    next >
Internet Message Format  |  1994-09-20  |  2KB

  1. Received: from VX22.CC.MONASH.EDU.AU (vx22.cc.monash.edu.au [130.194.1.22]) by kantti.helsinki.fi (8.6.9/8.6.5) with ESMTP id FAA18918 for <blitz-list@helsinki.fi>; Mon, 4 Jul 1994 05:57:26 +0300
  2. Received: from mdw089.cc.monash.edu.au by vaxc.cc.monash.edu.au
  3.  (PMDF V4.3-8 #6430) id <01HEB55273U893HIT9@vaxc.cc.monash.edu.au>; Mon,
  4.  04 Jul 1994 12:56:52 +1000
  5. Received: (msaw1@localhost) by mdw089.cc.monash.edu.au (8.6.9/8.6.4)
  6.  id MAA05255; Mon, 4 Jul 1994 12:56:50 +1000
  7. Date: Mon, 04 Jul 1994 12:53:28 +1000 (EST)
  8. From: Mr M Sawicki <msaw1@mdw089.cc.monash.edu.au>
  9. Subject: Re: TextEntry problem
  10. In-reply-to: <199407042202.AA08307@zeus>
  11. To: tom duncan <duncan@zeus.usq.edu.au>
  12. Cc: blitz-list@helsinki.fi
  13. Message-id: <Pine.3.07.9407041227.A5235-a100000@mdw089.cc.monash.edu.au>
  14. MIME-version: 1.0
  15. Content-type: TEXT/PLAIN; charset=US-ASCII
  16. Content-transfer-encoding: 7BIT
  17. X-Status: 
  18. Status: RO
  19.  
  20.  
  21.  
  22. On Mon, 4 Jul 1994, tom duncan wrote:
  23.  
  24. > Hi all,
  25. >     Having a couple of problems.
  26. >     1. Text Entry program by Mark Tiffany
  27. > I have a few Token messed up.
  28. > Any ideas were these come from. I thought by blitzlibs were up-to-date
  29. > USEPATH TextEntryInfo
  30. >   t$=StripTrail$(t$,Asc(" "))
  31. >   ot$=t$
  32. >   If \Winw>????? Then \Winw=?????
  33. >   If \Winh>????? Then \Winh=?????
  34. >   If \Winx+\Winw>????? Then \Winx=?????-\Winw
  35. >   If \Winy+\Winh>????? Then \Winy=?????-\Winh
  36. >
  37.  
  38. ??????? - Means that a token is not found. It happened to me when I tried
  39. running a program for which library was not installed.  
  40.  
  41. >     2. ROL
  42. > I need to do a 4 bit ROL and havn't a clue on setting up the registers.
  43. > Any ideas anyone.
  44.  
  45. No need to. All you have to do is
  46.  
  47. a ROL 4 <- this will rotate a 4 times to the left.
  48.  
  49. You may have to use a=a ROL 4 but I think above should work. For more info
  50. check out user guide.
  51.  
  52. Maciek.
  53.  
  54.